home *** CD-ROM | disk | FTP | other *** search
/ Practical Web Pages 2004 September / PracticalWebPages-WPG13-09-2004-Coverdisc.iso / pc / Software / Toolkit / Sothink SWF Quicker 1.5 / data1.cab / Public_Files / Classes / Function.as < prev    next >
Encoding:
Text File  |  2004-06-14  |  818 b   |  8 lines

  1. class Function
  2. {
  3.     var prototype                                                        // In an ActionScript 1 constructor function, the prototype property refers to an object that is the prototype of the constructed class.
  4.  
  5.     function apply(thisObject, argumentsObject)                          // Specifies the value of this to be used within any function that ActionScript calls. This method also specifies the parameters to be passed to any called function. Because apply() is a method of the Function class, it is also a method of every function object in ActionScript. 
  6.     function call(thisObject, Parameter)                                 // Invokes the function represented by a Function object. Every function in ActionScript is represented by a Function object, so all functions support this method.
  7. }
  8.